home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1996 #6
/
Amiga Plus CD - 1996 - No. 06.iso
/
pd
/
texte
/
texfontinst
/
contrib
/
karl
/
rmligdups.awk
< prev
next >
Wrap
Text File
|
1996-07-30
|
390b
|
15 lines
# At kern steps, just save away the value, so only the last one will be output.
/\(KRN/ { lk_table[$3] = $0; next }
# Assume (STOP)'s are in the right place.
# This rearranges the order, but oh well.
# It's random by the time the vpl file has been written anyway.
/\(STOP\)/ { for (lk in lk_table)
{
print lk_table[lk];
delete lk_table[lk];
}
}
{ print }